Task Based Help > Formatting Reports > Adding Alternating Background Color |
To create a report with alternating background color, use the C1.C1Report.Section.OnPrint property of the Detail section to change the C1.C1Report.Section.BackColor property of the section.
To do this, complete the following steps:
cnt = cnt + 1
if cnt mod 2 = 0 then
detail.backcolor = rgb(200,220,200)
else
detail.backcolor = rgb(255,255,255)
endif
This topic illustrates the following:
The report will appear with an alternating background color.
Whenever a Detail section is rendered, the counter is incremented and the BackColor property of the Detail section is toggled.
Sample Report Available: For the complete report, see report "01: Alternating Background (Greenbar report)" in the CommonTasks.xml report definition file, which is available for download from the CommonTasks sample on the ComponentOne HelpCentral Sample page. |